home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2002 #8 / K-CD_2002-08.iso / WatzNew / data.cab / Environment Variables.pl next >
Text File  |  2000-06-18  |  332b  |  11 lines

  1. # ------------------------------------------------------------------------------
  2. # ENVIRONMENT VARIABLES DUMP script by A.I.Studio / Igor Afanasyev
  3. # ------------------------------------------------------------------------------
  4.  
  5. print "MSG: ";
  6.  
  7. foreach $key (sort keys %ENV) {
  8.   print "<LI><B>$key</B> = ".$ENV{$key};
  9. }
  10.  
  11.